home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks95 / IsNative.sit / Is Native / MyHideWindow.c < prev    next >
Text File  |  1995-06-24  |  435b  |  26 lines

  1. //
  2. // File:    MyHideWindow.c
  3. // Project:    IsNative.π
  4. // Author:    Glenn L. Austin
  5. //            Symantec Corporation
  6. //
  7. #include <Traps.h>
  8. #include "IsNative.h"
  9.  
  10. WindowPtr    aboutWindow;
  11. void*        oldHideWindowTrap;
  12.  
  13. pascal void MyHideWindow(WindowPtr theWindow)
  14. {
  15.     long    oldA4 = SetA4World();
  16.     
  17.     if (theWindow == aboutWindow)
  18.     {
  19.         SetToolTrapAddress(oldHideWindowTrap, _HideWindow);
  20.         StopAnimation();
  21.         aboutWindow = nil;
  22.     }
  23.     
  24.     RestoreA4World(oldA4);
  25. }
  26.